summaryrefslogtreecommitdiffhomepage
path: root/packages/console/app/src/routes/docs/[...path].ts
blob: 5493c31a62fa5c554898805710f39ed37d60e89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import type { APIEvent } from "@solidjs/start/server"
import { localeFromCookieHeader, tag } from "~/lib/language"

async function handler(evt: APIEvent) {
  const req = evt.request.clone()
  const url = new URL(req.url)
  const targetUrl = `https://docs.opencode.ai${url.pathname}${url.search}`

  const headers = new Headers(req.headers)
  const locale = localeFromCookieHeader(req.headers.get("cookie"))
  if (locale) headers.set("accept-language", tag(locale))

  const response = await fetch(targetUrl, {
    method: req.method,
    headers,
    body: req.body,
  })
  return response
}

export const GET = handler
export const POST = handler
export const PUT = handler
export const DELETE = handler
export const OPTIONS = handler
export const PATCH = handler